Add a disclaimer banner to a siteIn order for a disclaimer bar to be added to all pages within a site, the steps listed below must be followed.
<frameset rows="20, 44,*" border="0" framespacing="0" frameborder="0"< <frame name="disclaimer" id="disclaimer" src=" http://localhost/processlibraries/processlibrary/sandpit/static html/disclaimer.html" scrolling="no" marginwidth="0" marginheight="0"> <frame name="top" id="top" src=" http://localhost/processlibraries/processlibrary/sandpit/static html/nav.html" scrolling="no" marginwidth="0" marginheight="0"> <frame name="main" id="main" src="##VIS_SAW_FILE##"> </frameset> No disclaimer <frameset rows="44,*" border="0" framespacing="0" frameborder="0"> <frame name="top" id="top" src="nav.html" scrolling="no" marginwidth="0" marginheight="0"> <frame name="main" id="main" src="../html/revision%20history%20content.html"> </frameset> Disclaimer added <frameset rows="20, 44,*" border="0" framespacing="0" frameborder="0"> <frame name="disclaimer" id="disclaimer" src="disclaimer.html" scrolling="no" marginwidth="0" marginheight="0"> <frame name="top" id="top" src="nav.html" scrolling="no" marginwidth="0" marginheight="0"> <frame name="main" id="main" src="../html/revision%20history%20content.html"> </frameset> Before edit (line in red to be copied)
<frames> <stage name="processlibrary:sandpit" title="Process Library (Sandpit)" innerframewidth="224"> <frame name="disclaimer" rowheight="20" path="../../ProcessLibraries/ProcessLibrary/Sandpit/static html/disclaimer.html" /> <frame name="top" rowheight="44" path="../../ProcessLibraries/ProcessLibrary/Sandpit/static html/nav.html" /> </stage> <stage name="processlibrary:prelive" title="Process Library (Prelive)" innerframewidth="224"> <frame name="disclaimer" rowheight="20" path="../../ProcessLibraries/ProcessLibrary/Prelive/static html/disclaimer.html" /> <frame name="top" rowheight="44" path="../../ProcessLibraries/ProcessLibrary/Prelive/static html/nav.html" /> </stage> <stage name="processlibrary:live" title="Process Library (Live)" innerframewidth="224"> <frame name="top" rowheight="44" path="../../ProcessLibraries/ProcessLibrary/Live/static html/nav.html" /> </stage> </frames> After edit (line in blue has been pasted and edited) <frames> <stage name="processlibrary:sandpit" title="Process Library (Sandpit)" innerframewidth="224"> <frame name="disclaimer" rowheight="20" path="../../ProcessLibraries/ProcessLibrary/Sandpit/static html/disclaimer.html" /> path="../../ProcessLibraries/ProcessLibrary/Sandpit/static html/disclaimer.html" /> <frame name="top" rowheight="44" path="../../ProcessLibraries/ProcessLibrary/Sandpit/static html/nav.html" /> </stage> <stage name="processlibrary:prelive" title="Process Library (Prelive)" innerframewidth="224"> <frame name="disclaimer" rowheight="20" path="../../ProcessLibraries/ProcessLibrary/Prelive/static html/disclaimer.html" /> <frame name="top" rowheight="44" path="../../ProcessLibraries/ProcessLibrary/Prelive/static html/nav.html" /> </stage> <stage name="processlibrary:live" title="Process Library (Live)" innerframewidth="224"> <frame name="disclaimer" rowheight="20" path="../../ProcessLibraries/ProcessLibrary/Live/static html/disclaimer.html" /> <frame name="top" rowheight="44" path="../../ProcessLibraries/ProcessLibrary/Live/static html/nav.html" /> </stage> </frames> |